home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / TEMP / GNU / bison / GrammarOut < prev    next >
Text File  |  1995-06-28  |  840b  |  35 lines

  1. Grammar Outline
  2. Previous: <Grammar File=>GrammarFil> * Next: <Symbols=>Symbols> * Up: <Grammar File=>GrammarFil>
  3.  
  4. #Wrap on
  5. {fH3}Outline of a Bison Grammar{f}
  6.  
  7. A Bison grammar file has four main sections, shown here with the
  8. appropriate delimiters:
  9.  
  10. #Wrap off
  11. #fCode
  12. %\{
  13. {fStrong}C declarations{f}
  14. %\}
  15.  
  16. {fStrong}Bison declarations{f}
  17.  
  18. %%
  19. {fStrong}Grammar rules{f}
  20. %%
  21.  
  22. {fStrong}Additional C code{f}
  23. #f
  24. #Wrap on
  25.  
  26. Comments enclosed in {fEmphasis}\/\* … \*\/{f} may appear in any of the sections.
  27.  
  28. #Wrap off
  29. <C Declarations=>CDeclarati>:    Syntax and usage of the C declarations section.
  30. <Bison Declarations=>BisonDecla>:  Syntax and usage of the Bison declarations section.
  31. <Grammar Rules=>GrammarRul>:     Syntax and usage of the grammar rules section.
  32. <C Code=>CCode>:            Syntax and usage of the additional C code section.
  33. #Wrap on
  34.  
  35.